home *** CD-ROM | disk | FTP | other *** search
/ 207.233.110.77 / 207.233.110.77.tar / 207.233.110.77 / web08 / Tutorial 5 / tables.css < prev    next >
Cascading Style Sheet File  |  2011-02-28  |  856b  |  28 lines

  1. /*
  2.    New Perspectives on HTML and XHTML 5th Edition
  3.    Tutorial 5
  4.    Tutorial Case
  5.  
  6.    Tables Style Sheet
  7.    Author: Andrew Densmore
  8.    Date: 2/28/11  
  9.  
  10.    Filename:         tables.css
  11.    Supporting Files: 
  12.  
  13. */
  14. tables.schedule    {border: 10px outset rgb(153,0,153); border-collapse: collapse;
  15.                 font-family: Arial, helvetica, sans-serif; font-size: 0.7em;
  16.                 width: 100%}
  17. table.schedule th, table.schedule td
  18.     {border: 1 px solid grey}
  19. table.schedule thead    {color:white; background-color: rgb(203,50,203)}
  20. table.schedule col.firstcol
  21.                 {background-color: rgb(255,255,192); width:7%}
  22. table.schedule col.daycols
  23.                 {width:13%}
  24. table.schedule thead tr {height: 20px}
  25. table.schedule tbody tr {height: 30px}
  26.  
  27. table.schedule tbody td {vertical-align:top; padding: 5px}
  28. table.schedule caption {caption-side: top; text-align: right}